## --------------------------------------------------------------------------
#  Palm OS Generic Makefile for Palm OS Developer Suite v1.1.0
#
# Last edit: 7/14/04
#
# Fill in this file to specify your project and the source that you want
# to build, and the settings involved in the build.
#
# After starting a new project, please remember the following steps...
#	1. Review the other settings as needed.
#
## --------------------------------------------------------------------------

SHELL = /bin/sh

## --------------------------------------------------------------------------
# Set up the artifact name, which is the root name of your project's output
# without the extension.
#
# The PDB database name needs to be specified here as ARTIFACT_NAME for 
# Palm OS Developer Suite to find.
## --------------------------------------------------------------------------

ARTIFACT_NAME =???ARTIFACT_NAME???

## --------------------------------------------------------------------------
# Build Settings
# Review the following for your needs.
# The default settings build with debug information and no optimization.
## --------------------------------------------------------------------------

#
# Set Debug or Release configuration here.  This setting is used in 
# combination target platform to determine which output directory the 
# artifact is located in.  
#
DEBUG_OR_RELEASE=Debug

#
# Set the target platform for the build; either Device or Simulator
# Use Device as a target for emulator builds.  For 68K projects, this
# option doesn't really affect the build; 68K code is built for both
# device and simulator targets
#
TARGET_PLATFORM=Device

## --------------------------------------------------------------------------
# Output Settings
## --------------------------------------------------------------------------

# Modify if you want output files to be in different locations.  These
# directories are assumed to be project relative.  A blank directory value
# indicates the project root directory.

DEBUG_DEVICE_OUTPUT_DIR :=
RELEASE_DEVICE_OUTPUT_DIR :=
DEBUG_SIMULATOR_OUTPUT_DIR :=
RELEASE_SIMULATOR_OUTPUT_DIR :=


## --------------------------------------------------------------------------
# Makefiles
## --------------------------------------------------------------------------

## conditionally include an auto-generated.mk for dynamic definitions
-include auto-generated.mk

## conditionally include your own custom.mk for your specific overrides or definitions
## this is useful if you don't want to use the auto-generated.mk values
## for some reason
-include custom.mk

## --------------------------------------------------------------------------
# Make rules for Palm OS Databases
#
# This release of Palm OS Developer Suite does not include any PDB generation
# tools so there's nothing to build.  If you want to use third-party tools,
# make your changes here.
## --------------------------------------------------------------------------

all : 
	@echo Nothing to build
	
clean:
	@echo Nothing to clean

